POST
/
v1
/
shipping
/
shipments
/
{id}
/
pick
Pick Shipment
curl --request POST \
  --url https://{client_id}.shipstream.app/api/global/v1/shipping/shipments/{id}/pick \
  --header 'Content-Type: application/json' \
  --data '{
  "pick_locations": [
    {
      "location_label": "<string>",
      "quantity": 123
    }
  ]
}'
This response does not have an example.

Path Parameters

id
integer
required

The id of the referenced Shipment.

Required range: x >= 1

Body

application/json

The body is of type object.

Response

200

OK - The operation completed successfully and there is no response body.